.container{
    margin: 0 auto;
    padding: 30px;
    background-color: #d1edfbde;

    background-image: url('../images/bg2.png');
    background-color: rgba(#d1edfb); /* Adjust the opacity here */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.shop-item-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.individual-item{
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 20px;
    margin-top: 70px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

/* Left side */

.left-side{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.item-image{
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;

}

.item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left side */

/* Right side */
.right-side{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 60%;
    height: 100%;
    padding: 20px;
    gap: 20px;
}

.name-price-holder{
    font-size: 30px;
}

.name-price-holder h3{
    font-size: 40px;
    font-weight: 600;
    color: #7450af;
}

.name-price-holder h4{
    font-size: 30px;
    font-weight: 400;
    color: #e73c38;
}

.color-select{
    display: flex;

    flex-direction: column;
    gap: 10px;
}

.color-select h3{
    font-size: 20px;
    font-weight: 400;
    color: #7450af;
}

.color-options{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.color-options p{
    font-size: 20px;
    font-weight: 400;
    color: #7450af;
    padding: 10px;
    border-radius: 20px;
    background-color: #7450af6c;
    cursor: pointer;
    border: 1px solid #7450af;
    transition: all 0.3s ease-in-out;
}

.color-options p:hover{
    background-color: #7450af;
    color: white;
}

.size-select{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.size-select h3{
    font-size: 20px;
    font-weight: 400;
    color: #7450af;
}

.size-options{
    display: flex;

    align-items: center;
    gap: 20px;
}

.size-options p{
    font-size: 20px;
    font-weight: 400;
    color: #7450af;
    padding: 10px;
    border-radius: 50%;
    background-color: #7450af6c;
    cursor: pointer;
    border: 1px solid #7450af;
    transition: all 0.3s ease-in-out;
    width: 40px; /* Ensure width and height are equal */
    height: 40px; /* Ensure width and height are equal */
    display: flex;
    justify-content: center;
    align-items: center;
}

.size-options p:hover{
    background-color: #7450af;
    color: white;
}

.add-to-cart-button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 60%;
    height: 40px;
    background-color: #f16563;
    border: 3px solid #e73c38;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.add-to-cart-button:hover{
    background-color: #e73c38;
    color: white;
}

.item-spec-holder{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 30%;
    gap: 10px;
}

.item-spec{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.item-spec p{
    font-size: 15px;
    font-weight: 400;
    color: #7450af;
}

.item-spec img{
    width:30px;
    object-fit: cover;
}

.item-description-holder{
    border-top: 1px solid #7450af77;
    width: 70%;
    margin-top: 50px;
    padding-top: 10px;
}

.item-description-holder h3{
    font-size: 20px;
    font-weight: 600;
    color: #7450af;
    margin-bottom: 10px;
}

.item-description-holder p{
    font-size: 15px;
    font-weight: 400;
    color: #7450af;
}

.error{
    display: none;
    color: #e73c38;
}

/* Item selected  */
.size-option.selected {
    background: #ffe0ec;
    font-weight: bold;
}

.color-option.selected {
    background: #ffe0ec;

    font-weight: bold;
  
}

.old-price{
    text-decoration:line-through;
    color:#e73c38;
}

/* Size image */

.item-dimensions{
    display: flex;
    justify-content: start;
    align-items: center;
    width: fit-content;
    gap: 20px;
    background-color: #ffe0ec;
    padding: 20px;
    border-radius: 20px;
}

.item-dimensions img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.size-table tr{
    border-bottom: 1px solid #7450af;
}

.size-table th{
    font-size: 15px;
    font-weight: 600;
    color: #7450af;
    padding: 10px;
    text-align: center;
    
}

.size-table td:first-child {
    font-size: 15px;
    font-weight: 400;
    color: black;
    padding: 10px;
    text-align: center;
    border: 1px solid #7450af;
    border-radius: 50%;
    width: 40px; /* Ensure width and height are equal */
    height: 40px; /* Ensure width and height are equal */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.size-table td{
    font-size: 15px;
    font-weight: 400;
    color: black;
    padding: 10px;
    text-align: center;
    border: 1px solid #7450af;
    border-radius: 20px;
}

/* Mobile */

@media (max-width: 768px) {
        .container{
        background-image: url('../images/mobile-bg.png');

    }

    .container{
        padding: 20px;
    }
    .individual-item{
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .left-side{
        width: 100%;
        padding: 0px;
    }

    .right-side{
        width: 100%;
        padding: 0px;
    }

    .item-image{
        width: 100%;
        height: 100%;
    }

    .name-price-holder h3{
        font-size: 30px;
    }

    .name-price-holder h4{
        font-size: 20px;
    }

    .color-select h3{
        font-size: 15px;
    }

    .item-dimensions{
        width: 100%;
        flex-direction: column;
    }

    .add-to-cart-button{
        width: 100%;
        height: 50px;
        font-size: 25px;
    }
}